home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene1_2.dir / 00141_Script_fastForwardTOscene2 < prev    next >
Text File  |  1999-03-01  |  539b  |  31 lines

  1. on mouseWithin me
  2.   cursor [the memberNum of member "pointy", the memberNum of member "pointy_mask"]
  3. end
  4.  
  5. on mouseLeave me
  6.   cursor -1
  7. end
  8.  
  9. on mouseDown me
  10.   repeat with x = 1 to 6
  11.     if soundBusy(x) then 
  12.       set the volume of sound x to 255
  13.       sound stop x
  14.     end if
  15.   end repeat
  16.   puppetSprite 97, FALSE -- the fast forward button coming from scene2
  17.   set the loc of sprite(97) = point(1000, 1000)
  18.   
  19.   updatestage
  20.   cursor 200
  21.   
  22. end
  23.  
  24. on mouseUp me
  25.   cursor -1
  26.   
  27.   
  28.   go to frame "scene2"
  29.   
  30. end 
  31.